create table "ProviderConsultationRoom"(
 "ProviderConsultationRoomId" serial primary Key,
 "ProviderId" int references "Provider" ("ProviderId"),
 "RoomId" int references "Room"("RoomId"), "LocationId" int references "Location"("LocationId")
);


-------------